home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / cxref_1_4a.lha / Makefile.config < prev    next >
Makefile  |  1997-12-07  |  1KB  |  60 lines

  1. # $Header: /home/amb/cxref/RCS/Makefile.config 1.5 1997/08/25 09:24:14 amb Exp $
  2. #
  3. # C Cross Referencing & Documentation tool. Version 1.4a.
  4. #
  5. # Configuration Makefile.
  6. #
  7. # Written by Andrew M. Bishop
  8. #
  9. # This file Copyright 1995,96 Andrew M. Bishop
  10. # It may be distributed under the GNU Public License, version 2, or
  11. # any higher version.  See section COPYING of the GNU Public license
  12. # for conditions under which this file may be redistributed.
  13. #
  14.  
  15. # Instead of editing one of the Makefiles, edit this one.
  16.  
  17. # The location to install the programs.
  18. # (in subdirectories bin and man/man1 .)
  19.  
  20. INSTDIR=/usr/local
  21.  
  22. # The installation program.
  23. # (if you don't have a BSD style install, use ./install.sh .)
  24.  
  25. INSTALL=install -c
  26.  
  27. # The C compiler and flags
  28.  
  29. CC=gcc
  30. CFLAGS=-O2
  31.  
  32. # The linker and flags
  33.  
  34. LD=gcc
  35. LDFLAGS=
  36.  
  37. # The Yacc program
  38.  
  39. YACC=bison -y -l
  40.  
  41. # The Lex Program
  42.  
  43. LEX=flex -L
  44.  
  45. # The Perl program
  46. # (If you do not have perl, leave it blank.)
  47.  
  48. PERL=perl
  49.  
  50. # The LaTeX and dvips programs
  51. # (If you do not have LaTeX or dvips, leave them blank.)
  52.  
  53. LATEX=latex
  54. DVIPS=dvips
  55.  
  56. # The LaTeX page size.
  57. # (A4 or US only.)
  58.  
  59. LATEX_PAGE=A4
  60.